luci-mod-status: Host -> Hostname in DHCPv6 table
authorDavid Härdeman <david@hardeman.nu>
Tue, 9 Dec 2025 07:58:23 +0000 (08:58 +0100)
committerPaul Donald <newtwen+github@gmail.com>
Tue, 9 Dec 2025 11:34:19 +0000 (12:34 +0100)
The DHCPv4 table already calls it "Hostname", and so do the DHCPv[46]
tables in luci-mod-network, so rename this one as well for consistency.
Note that "Hostname" is already used elsewhere, so this shouldn't cause
translation issues (I think).

Signed-off-by: David Härdeman <david@hardeman.nu>
modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js

index 990b16704b96756258faf49abfb53f6837994cd1..badfeece2be1c94347bfebe782d7db212a9583bb 100644 (file)
@@ -166,7 +166,7 @@ return baseclass.extend({
                const table6 = E('table', { 'id': 'status_leases6', 'class': 'table leases6' }, [
                        E('tr', { 'class': 'tr table-titles' }, [
                                L.hasSystemFeature('odhcpd', 'dhcpv6') ? E('th', { 'class': 'th' }, _('Interface')) : E([]),
-                               E('th', { 'class': 'th' }, _('Host')),
+                               E('th', { 'class': 'th' }, _('Hostname')),
                                E('th', { 'class': 'th' }, _('IPv6 addresses')),
                                E('th', { 'class': 'th' }, _('DUID')),
                                E('th', { 'class': 'th' }, _('IAID')),